cwd python

160

get wd in python -

import os

path = os.getcwd()

print(path)
# /Users/mbp/Documents/my-project/python-snippets/notebook

print(type(path))
# <class 'str'>

cwd python -

import os
cwd = os.getcwd()

os get current directory -

import os

#Get Current working Directory
currentDirectory = os.getcwd()

#Change the Current working Directory
os.chdir('/home/varun')

Comments

Submit
0 Comments